home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / vbusfboxgar.sql < prev    next >
Text File  |  2000-05-12  |  402b  |  15 lines

  1. /* lists all the buses and their farebox and garage assignments
  2. omitted assignments will show up as null entries because of the outer joins 
  3. */
  4. CREATE OR REPLACE VIEW VBUSFBOXGAR AS SELECT  
  5. BUS.BUS_ID bus, FAREBOX.GLID  fbox, GARAGE.GARAGE_ID garage 
  6. FROM  
  7. BUS BUS,  
  8. FAREBOX FAREBOX,  
  9. GARAGE GARAGE  
  10. WHERE  
  11. ( BUS.GARAGEID=GARAGE.GLID(+) ) AND  
  12. ( FAREBOX.LOCATION(+) =BUS.GLID );
  13.  
  14.  
  15.